home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / readline / examples / makefile < prev    next >
Makefile  |  1996-11-01  |  267b  |  13 lines

  1. CFLAGS = -O -I../../
  2. CC = gcc
  3.  
  4. %.o : %.cc ; $(CC) $(CFLAGS) -c $< -o $@
  5. %.o : %.c ; $(CC) $(CFLAGS) -c $< -o $@
  6.  
  7. all: fileman.exe
  8.  
  9. fileman.exe: fileman.o ../readline.a
  10.     $(CC) -o fileman.exe fileman.o ../readline.a -lxmalloc -Zcrtdll
  11.  
  12. fileman.o: fileman.c
  13.